DataStructure and Algorithms Solutions with Supercool 💯
前往频道在 Telegram
DSA with supercool For paid projects:- Email :- supercool7151@gmail.com Follow me on social media https://linktr.ee/codemaking
显示更多643
订阅者
无数据24 小时
无数据7 天
无数据30 天
帖子存档
\n\n\n



Do you love me?
\n\n \n
\n\n \n
\n\n","datePublished":"2022-09-22T16:04:30Z","dateModified":"2022-09-22T16:04:30Z","author":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"publisher":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"commentCount":0,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":109},{"@type":"InteractionCounter","interactionType":"https://schema.org/ShareAction","userInteractionCount":1}]}},{"@type":"ListItem","position":6,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/454","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/454","mainEntityOfPage":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/454","headline":"https://www.tripwiremagazine.com/wp-content/uploads/images/stories/Articles/9_Funniest_JavaScript_effects/You…","articleBody":"https://www.tripwiremagazine.com/wp-content/uploads/images/stories/Articles/9_Funniest_JavaScript_effects/You%20must%20love%20me.html","datePublished":"2022-09-22T14:41:39Z","dateModified":"2022-09-22T14:41:39Z","author":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"publisher":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"commentCount":0,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":138}]}},{"@type":"ListItem","position":7,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/452","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/452","mainEntityOfPage":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/452","headline":"Guys if any one have problem then pin me Aagr helpful ho toh follow me","articleBody":"Guys if any one have problem then pin me \n\nAagr helpful ho toh follow me","datePublished":"2022-09-19T15:24:44Z","dateModified":"2022-09-19T15:24:44Z","author":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"publisher":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"commentCount":0,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":140}]}},{"@type":"ListItem","position":8,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/451","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/451","mainEntityOfPage":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/451","headline":"Guys if any one have problem then pin me","articleBody":"Guys if any one have problem then pin me","datePublished":"2022-09-19T15:21:52Z","dateModified":"2022-09-26T08:22:26Z","author":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"publisher":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"commentCount":0,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":1}]}},{"@type":"ListItem","position":9,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/450","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/450","mainEntityOfPage":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/450","headline":"Question 1 --> Write a program to reverser and \"Array\" and \"String\" ? You are given a string s. You need to r…","articleBody":"Question 1 --> Write a program to reverser and \"Array\" and \"String\" ?\n\nYou are given a string s. You need to reverse the string.\n\nExample 1:\n\nInput:\ns = Geeks\nOutput: skeeG\nExample 2:\n\nInput:\ns = for\nOutput: rof\nYour Task:\n\nYou only need to complete the function reverseWord() that takes s as parameter and returns the reversed string.\n\nExpected Time Complexity: O(|S|).\nExpected Auxiliary Space: O(1).\n\nConstraints:\n1 <= |s| <= 10000\n\n#User function Template for python3\n\nSolution :- \n\ndef reverseWord(s):\n #your code here\n str = \"\"\n for i in s[::-1]:\n str += i\n return str\n#{ \n # Driver Code Starts\n#Initial Template for Python 3\nif name == \"__main__\":\n t = int(input())\n while(t>0):\n s = input()\n print(reverseWord(s))\n t = t-1\n# } Driver Code Ends","datePublished":"2022-09-19T14:52:52Z","dateModified":"2022-09-19T14:52:52Z","author":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"publisher":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"commentCount":0,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":108}]}},{"@type":"ListItem","position":10,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/449","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/449","mainEntityOfPage":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/449","headline":"Question 1 --> Write a program to reverse an \"Array\" or \"String\" ? You are given a string s. You need to reve…","articleBody":"Question 1 --> Write a program to reverse an \"Array\" or \"String\" ?\n\nYou are given a string s. You need to reverse the string.\n\nExample 1:\n\nInput:\ns = Geeks\nOutput: skeeG\nExample 2:\n\nInput:\ns = for\nOutput: rof\nYour Task:\n\nYou only need to complete the function reverseWord() that takes s as parameter and returns the reversed string.\n\n\nPython3\n\nAverage Time:\n15m\nYour Time:\n43m\n1\n2\n3\n4\n5\n6\n7\n8\n9\n10\n11\n12\n13\n14\n15\n16\n17\n18\n19\n20\n21\n22\n#User function Template for python3\ndef reverseWord(s):\n #your code here\n str = \"\"\n for i in s[::-1]:\n str += i\n return str\n#{ \n # Driver Code Starts\n#Initial Template for Python 3\nif name == \"__main__\":\n t = int(input())\n while(t>0):\n s = input()\n print(reverseWord(s))\n t = t-1\n# } Driver Code Ends\n\nExpected Time Complexity: O(|S|).\nExpected Auxiliary Space: O(1).\n\nConstraints:\n1 <= |s| <= 10000","datePublished":"2022-09-19T14:49:44Z","dateModified":"2022-09-26T08:22:26Z","author":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"publisher":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"commentCount":0,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":1}]}},{"@type":"ListItem","position":11,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/448","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/448","mainEntityOfPage":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/448","headline":"Question 1 --> Write a program to reverse an \"Array\" or \"String\" ?","articleBody":"Question 1 --> Write a program to reverse an \"Array\" or \"String\" ?","datePublished":"2022-09-19T14:39:18Z","dateModified":"2022-09-26T08:22:26Z","author":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"publisher":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"commentCount":0,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":1}]}},{"@type":"ListItem","position":12,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/447","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/447","mainEntityOfPage":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/447","headline":"Lets Start","articleBody":"Lets Start","datePublished":"2022-09-19T14:38:17Z","dateModified":"2022-09-19T14:38:17Z","author":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"publisher":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"commentCount":0,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":98}]}},{"@type":"ListItem","position":13,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/446","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/446","mainEntityOfPage":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/446","headline":"DataStructure and Algorithms Solutions with Supercool 💯","datePublished":"2022-09-19T08:18:33Z","dateModified":"2022-09-19T08:18:33Z","author":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"publisher":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"commentCount":0,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":37}]}},{"@type":"ListItem","position":14,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/445","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/445","mainEntityOfPage":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/445","headline":"Today we will complete array part so i will send solution with notes","articleBody":"Today we will complete array part so i will send solution with notes","datePublished":"2022-09-19T05:48:13Z","dateModified":"2022-09-19T05:48:13Z","author":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"publisher":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"commentCount":0,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":42}]}},{"@type":"ListItem","position":15,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/444","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/444","mainEntityOfPage":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/444","headline":"Hello guys good morning","articleBody":"Hello guys good morning","datePublished":"2022-09-19T05:47:39Z","dateModified":"2022-09-19T05:47:39Z","author":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"publisher":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"commentCount":0,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":42}]}},{"@type":"ListItem","position":16,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/442","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/442","mainEntityOfPage":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/442","headline":"https://discord.gg/YKadK62U. HTML notes for beginners pdf by supercool guys support me share with your friend…","articleBody":"https://discord.gg/YKadK62U. HTML notes for beginners pdf by supercool guys support me share with your friends classmate","datePublished":"2022-09-16T08:54:59Z","dateModified":"2022-09-16T08:54:59Z","author":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"publisher":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"commentCount":0,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":79},{"@type":"InteractionCounter","interactionType":"https://schema.org/ShareAction","userInteractionCount":2}]}},{"@type":"ListItem","position":17,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/441","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/441","mainEntityOfPage":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/441","headline":"https://discord.gg/YKadK62U","articleBody":"https://discord.gg/YKadK62U","datePublished":"2022-09-16T08:54:05Z","dateModified":"2022-09-16T08:54:05Z","author":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"publisher":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"commentCount":0,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":1}]}},{"@type":"ListItem","position":18,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/440","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/440","mainEntityOfPage":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/440","headline":"DataStructure and Algorithms Solutions with Supercool 💯","datePublished":"2022-09-12T12:34:22Z","dateModified":"2022-09-12T12:34:22Z","author":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"publisher":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"commentCount":0,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":111},{"@type":"InteractionCounter","interactionType":"https://schema.org/ShareAction","userInteractionCount":2}]}},{"@type":"ListItem","position":19,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/439","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/439","mainEntityOfPage":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/439","headline":"DataStructure and Algorithms Solutions with Supercool 💯","datePublished":"2022-09-12T07:24:55Z","dateModified":"2022-09-12T07:26:25Z","author":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"publisher":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"commentCount":0,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":1}]}},{"@type":"ListItem","position":20,"item":{"@type":"SocialMediaPosting","@id":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/437","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/437","mainEntityOfPage":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0/posts/437","headline":"DataStructure and Algorithms Solutions with Supercool 💯","datePublished":"2022-09-11T18:01:12Z","dateModified":"2022-09-11T18:01:12Z","author":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"publisher":{"@type":"Organization","name":"DataStructure and Algorithms Solutions with Supercool 💯","url":"https://telemetr.io/ch/channels/1598647831-supercoolcoder0","image":"https://img.tlmtr.io/c/1KbLkr/6201874231181030257?ty=x"},"commentCount":0,"interactionStatistic":[{"@type":"InteractionCounter","interactionType":"https://schema.org/ViewAction","userInteractionCount":107},{"@type":"InteractionCounter","interactionType":"https://schema.org/ShareAction","userInteractionCount":2}]}}]}Repost from Python full stack development
𝐆𝐞𝐭 𝐏𝐥𝐚𝐜𝐞𝐝 𝐈𝐧 𝐭𝐡𝐞 𝐓𝐨𝐩 𝐓𝐞𝐜𝐡 𝐂𝐨𝐦𝐩𝐚𝐧𝐢𝐞𝐬 𝐖𝐢𝐭𝐡 𝐂𝐓𝐂 𝟒 𝐭𝐨 𝟏𝟐 𝐋𝐏𝐀
100% Assured Job Opportunity Program
Pay after placement or ISA available
𝐄𝐥𝐢𝐠𝐢𝐛𝐢𝐥𝐢𝐭𝐲:-
- BE, BTech, ME, MTech, BSc, MSc, BCA, MCA, BBA, MBA, BCom, BA, Diploma etc.
- Degrees are not mandatory, anyone who is interested in technology can apply.
- A laptop/Desktop is mandatory to apply for the program.
𝐑𝐞𝐠𝐢𝐬𝐭𝐞𝐫 𝐍𝐨𝐰 👇 :-
https://bit.ly/3vgC3tA
( Only a few seats left for the upcoming batch )
Companies Hiring - 200+ Top MNCs & Startups
Anyone who wants to build a career in the IT industry
Repost from Python full stack development
So what do you think a resume requires, to grab the attention of any recruiter?
In every resume out there, you will find skills, relevant experience, and education, but what does it take to stand out from others? Well, this article is surely going to help you with it.
Here, we have listed down the best resume tips you must consider.
Check the article now: https://bit.ly/3xNqGux
<html><head>
<title>You must love me</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="author" content="http://www.javascriptbank.com">
<meta name="distribution" content="Global">
<meta name="copyright" content="JavaScriptBank.com">
<script type="text/javascript">
flag=1
function f1()
{
alert("Yes. you are right ")
}
function f()
{
if(flag==1)
{
Bn.style.top=90
Bn.style.left=500
flag=2
}
else if(flag==2)
{
Bn.style.top=90
Bn.style.left=50
flag=3
}
else if(flag==3)
{
Bn.style.top=235
Bn.style.left=360
flag=1
}
}
</script>
</head>
<body>
<h1 style="position:absolute; left:220px; top:175px; width:auto; height:210px;">Do you love me?</h1>
<div id="By" style="position:absolute; left:285px; top:235px; width:210px;
height:210px;">
<input type="button" value=" YES " onclick="f1()">
</div>
<div id="Bn" style="position: absolute; left: 50px; top: 90px; width: 210px; height: 210px;">
<input type="button" value=" NO " onmouseover="f()">
</div>
</body></html>
Guys if any one have problem then pin me
Aagr helpful ho toh follow me
Question 1 --> Write a program to reverser and "Array" and "String" ?
You are given a string s. You need to reverse the string.
Example 1:
Input:
s = Geeks
Output: skeeG
Example 2:
Input:
s = for
Output: rof
Your Task:
You only need to complete the function reverseWord() that takes s as parameter and returns the reversed string.
Expected Time Complexity: O(|S|).
Expected Auxiliary Space: O(1).
Constraints:
1 <= |s| <= 10000
#User function Template for python3
Solution :-
def reverseWord(s):
#your code here
str = ""
for i in s[::-1]:
str += i
return str
#{
# Driver Code Starts
#Initial Template for Python 3
if name == "__main__":
t = int(input())
while(t>0):
s = input()
print(reverseWord(s))
t = t-1
# } Driver Code Ends
Question 1 --> Write a program to reverse an "Array" or "String" ?
You are given a string s. You need to reverse the string.
Example 1:
Input:
s = Geeks
Output: skeeG
Example 2:
Input:
s = for
Output: rof
Your Task:
You only need to complete the function reverseWord() that takes s as parameter and returns the reversed string.
Python3
Average Time:
15m
Your Time:
43m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#User function Template for python3
def reverseWord(s):
#your code here
str = ""
for i in s[::-1]:
str += i
return str
#{
# Driver Code Starts
#Initial Template for Python 3
if name == "__main__":
t = int(input())
while(t>0):
s = input()
print(reverseWord(s))
t = t-1
# } Driver Code Ends
Expected Time Complexity: O(|S|).
Expected Auxiliary Space: O(1).
Constraints:
1 <= |s| <= 10000
Question 1 --> Write a program to reverse an "Array" or "String" ?
Today we will complete array part so i will send solution with notes
https://discord.gg/YKadK62U. HTML notes for beginners pdf by supercool guys support me share with your friends classmate
