Tumgik
#codingcompetition
phonemantra-blog · 3 months
Link
Indian student Akshat Srivastava, a 22-year-old from BITSani, Goa, has recently achieved significant recognition by winning the prestigious Swift Student Challenge. This accomplishment brought him the unique opportunity to meet Apple CEO Tim Cook, who praised Srivastava's innovative work in app development. The young developer’s journey and his app, MindBud, are exemplary of the burgeoning talent and creativity among Indian students. Indian Student Akshat Srivastava The Swift Student Challenge: A Prestigious Platform The Swift Student Challenge is an annual competition hosted by Apple, aimed at encouraging young developers to showcase their coding skills and creativity. Winning this challenge is a testament to the participant's technical prowess and innovative thinking. Akshat Srivastava's success in this competition is a proud moment for India, highlighting the country's growing pool of talented developers. MindBud: Merging Classic Games with Modern Technology The Inspiration Behind MindBud Akshat Srivastava’s award-winning app, MindBud, was inspired by playful interactions with his nephew. Recognizing the importance of fostering both analytical and creative thinking in children, Srivastava developed MindBud to merge classic games with new technology. MindBud features four mini-games designed to be enjoyed by kids with their family and friends, promoting both fun and learning. Technological Excellence Srivastava utilized SwiftUI, AVKit, PencilKit, and FileManager to create an immersive and interactive experience with MindBud. These technologies allowed him to integrate modern features seamlessly into classic games, enhancing the user experience while maintaining the nostalgic charm of traditional games. Tim Cook's Admiration for Srivastava During their meeting, Tim Cook expressed his admiration for Srivastava's innovative spirit and dedication. Cook shared his thoughts on X (formerly Twitter), saying, “I met so many extraordinary developers when I visited India last year. It was equally wonderful to meet Akshat this week and see how he's created a whole new way to share his love of classic games with the next generation.” Srivastava’s Journey: From Covid-19 Crisis to WWDC 2024 Early Beginnings Srivastava’s journey in app development began during the Covid-19 pandemic. He developed an app to track vacant hospital beds via social media posts, showcasing his ability to leverage technology for social good. This early experience laid the foundation for his continued passion for app development. Recognition and Future Prospects Winning the Swift Student Challenge earned Srivastava a place among the 50 Distinguished Winners invited to WWDC 2024. This accolade not only recognizes his current achievements but also sets the stage for his future endeavors in technology. WWDC 2024 and Distinguished Winners A Unique Opportunity The 50 Distinguished Winners of the Swift Student Challenge are invited to a three-day in-person experience at Apple Park. This exclusive event includes tailored programming and special events designed to inspire and educate the next generation of developers. Impact on Indian Developers Tim Cook highlighted the significant contributions of Indian developers during WWDC 2024, saying, “Akshat is part of a growing generation of developers from all across India who are bringing their best ideas to life through coding and making an important impact in their communities and around the world.” This acknowledgment underscores the increasing influence of Indian developers on the global tech landscape. FAQs What is the Swift Student Challenge? The Swift Student Challenge is an annual competition hosted by Apple to encourage young developers to showcase their coding skills and creativity through innovative app projects. Who is Akshat Srivastava? Akshat Srivastava is a 22-year-old student from BITSani, Goa, who won the Swift Student Challenge with his app MindBud. What is MindBud? MindBud is an app developed by Akshat Srivastava that blends classic games with modern technology to foster analytical and creative thinking in children. How did Tim Cook react to Srivastava’s app? Tim Cook expressed admiration for Srivastava’s innovation and dedication, praising the app for its creativity and impact on the next generation. What opportunities do Swift Student Challenge winners get? Winners of the Swift Student Challenge are invited to a three-day in-person experience at Apple Park during WWDC, featuring tailored programming and special events.
0 notes
iimtcollege · 4 months
Text
Get Ready for Coding Aspiration 2k24! 💻
The Computer Science and Engineering Department is excited to announce the advanced coding competition "Coding Aspiration 2k24"-A Coding Arena of Tech-Masters!
.
Tumblr media
0 notes
womaneng · 6 months
Text
instagram
6 Sites to Improve Your Cover Letters 👇👇👩🏻‍💻💫 1. Kickresume kickresume.com/ 2. ResumeIO resume.io/ 3. Zety zety.com/ 4. NovoResume novoresume.com/ 5. ReziAI rezi.ai/ 6. Resumaker resumaker.ai/ . . . #coverletter #cv #engineer #engineeringlife #techhumour #techinfluencer #coderlife #coderlife #datascience #dataanalytics #datascientist #codingcompetition #codingjokes #codingmemes #lifequotes #development #developerlife
1 note · View note
suzukiapple · 1 month
Text
ABC365G - AtCoder Office
問題リンク
https://atcoder.jp/contests/abc365/tasks/abc365_g
公式解説1の考え方
公式解説に倣い、$i$番目の高橋くんがオフィスの中にいた時間の区間の集合を$S_i$とする。 クエリの組$(A, B)$について、下記パターンI, Ⅱに分けて考える。
パターンI: 愚直にイベントソートして処理。 高橋くんそれぞれのイベントを予め分けておく。 クエリの組$(A, B)$のイベントをマージ→重複している時間を求める。 クエリ1回あたり$O(C_{})$かかる(イベントは入力でソート済みなのでlogはかからない)。 クエリ$Q$回全部$C$以下があり得るので、クエリ全体で$O(QC)$かかる。
パターンⅡ: クエリの組$(A, B)$は、 ・$C$より大きい高橋くんが$\frac{M}{C}$ ・任意の高橋くんが$N$ この2種から1つずつ選ぶので$O(\frac{NM}{C})$個のクエリがパターンⅡに当てはまり得る。 これらクエリを予め計算してキャッシュし、クエリに答えるようにする。
$S_i$が$C$を超える高橋くんを$i$、任意の高橋くんを$x$として、クエリの組$(i, x)$をまとめて前計算する。 前計算1回あたり、イベント全走査して$x$を全通りキャッシュするので、時間計算量$O(N+M)$、空間計算量$O(N)$かかる。
$i$のあり得る個数は$O(\frac{M}{C})$ (イベント個数$M$から閾値$C$が何個取れるか)により、 キャッシュ計算全体で時間計算量$O(\frac{(N+M)M}{C})$ 空間計算量$O(\frac{NM}{C})$
$C=O(\sqrt{\frac{NM}{Q}})$ とすることで、 全体$O(\sqrt{NMQ}+M\sqrt{\frac{MQ}{N}})$で解ける。
提出コード https://atcoder.jp/contests/abc365/submissions/56695169
平方分割の考え方1
可能ならクエリの答えをすべて予め計算してキャッシュしたいが時間が掛かりすぎるため、 何個キャッシュを持っておくべきか? →$\sqrt{N}$くらいキャッシュする キャッシュで持ちきれない分は都度愚直計算する。 都度愚直計算する負担が少ないものはどういう性質がある? →$S$が小さいもの
平方分割の考え方2
クエリ全部を都度愚直計算で答えるとする。 愚直で答え切れるクエリ1回あたりの限界は? →$S$が$\sqrt{M}$くらい 範囲外のものは予め計算しておいてキャッシュから答える。
公式解説2の考え方
合計が$M$のとき、$Q$個の相異なるペアについて小さい方の和は$O(M\sqrt{Q})$で抑えられる。 クエリ1つ捌くところで計算量を「ペアの小さい方log(ペアの大きい方)」になるように書けば間に合うイメージ。
$O(M√Q)$で抑えられる抑えられる理由のイメージは、 ペア$(A, B)$について、$A$も$B$も$M$への寄与分が同じときが一番きつい。 ペアに登場する要素の種類数が$x$のとき、その全組み合わせは${}_xC_2=O(x^2)$なので 要素の種類数を$\sqrt{Q}$個にして、$M$を$\sqrt{Q}$に均等に割り振るのが最悪ケース。 このとき要素一つあたり$O(\frac{M}{\sqrt{Q}})$、 クエリ$Q$個飛んでくるので$O(\frac{M}{\sqrt{Q}}*Q)=O(M\sqrt{Q})$。
クエリ1つ捌くところで計算量を「ペアの小さい方log(ペアの大きい方)」にするパートは ABC305D-Sleep Logと同じ。
クエリは相異なるペアである必要があるので、同じクエリが来たときようにキャッシュが必要な点に注意。
提出コード https://atcoder.jp/contests/abc365/submissions/56669241
類題 https://www.facebook.com/codingcompetitions/hacker-cup/2022/qualification-round/problems/D
0 notes
teluguonenews · 2 years
Text
వెబ్సైట్ డవలప్మెంట్ కాంపిటిషన్స్ లో గెలిచి ఆ పోటీలు పెట్టిన వాళ్ళ దగ్గర సంవత్సరానికి 33 లక్షల సాలరీతో జాబ్ కు ఎంపికయ్యాడు. న్యూజెర్సీకి చెందిన హెచ్ఆర్‌డి సంస్థలో వారి టీమ్ లో వేదాంత్ కు స్థానం దొరికేసింది. అతను చెయ్యాల్సిన కోడింగ్ పనిని ఆ సంస్థ వాళ్ళు చెప్పడం, దానిమీదఆ వేదాంత్ పనిచేయడం ఒక్కటే మిగులుంది అన్నప్పుడు ఆ సంస్థ వాళ్లకు ఒక షాకింగ్ నిజం తెలిసింది... for more info visit teluguone.com
1 note · View note
dailytech-info · 3 years
Photo
Tumblr media
Then think of beginners kit . . 🌐www.techyrick.com . . #codingquotes #codingclass #codinglife💻 #codingforkids #encoding #codingbootcamp #codingislife #codinghumour #codingskills #codingismylife #codingblog #codinglove #codingcommunity #codingbooks #codingpics #codinghumor #codinggoats #learncoding #codingtime #codingcompetition #codinginspiration #codingdecoding #codingschool #htmlcoding #codingisfun #codingmemes #coding #codingchallenge #codingforbeginners #codinglife https://www.instagram.com/p/CQ5FBk1hhCX/?utm_medium=tumblr
0 notes
techykids · 3 years
Link
0 notes
98thpercentile2 · 4 years
Text
Coding Aptitude Tournament - Only 1 More Day Left To Register
Tumblr media
Only 1 more day left to register for 98thPercentile CAT - Coding Aptitude Tournament, an Online Coding Competition for students of grade1-6 . Enrol your child today and hold a chance to win awards & scholarships of up to $1000. Limited seats. To register for free click the below link:
https://bit.ly/3a83QCH 
0 notes
cimagecollege · 2 years
Photo
Tumblr media
CODE COMBAT 1.0 MODULE-I- INTRA BATCH COMPETITIONELEMENTARY LEVEL14/05/2022
1 note · View note
zeljkapotoku · 7 years
Photo
Tumblr media
I’m so proud of her. Yesterday She participated on #codingcompetition #logoliga organised by #zrs and She is the youngest #competitor and She was great and Had big fun!! #coding #girlcode #codinggirl #stem #stemgirls #girlsinstem #girlpower #education #inspireyoung
0 notes
oceanit-blog · 7 years
Text
Hawaii Students Travel to Seoul to Compete in International Altino Competition
http://bit.ly/2ytBeT4
Tumblr media
High schoolers, Dayevin Bunao and Kayla Diniega, joined an Oceanit-sponsored trip to South Korea in September for the 2017 Annual SAEON Autonomous Challenge. They started off as students studying coding through a series of classes that use “Altino” robotic cars as a platform to teach multiple coding languages such as Android, Arduino, and C++. From there, they became mentors, and their dedication to helping teachers learn code earned them a trip to South Korea, with additional help and support from those who donated to the Altino Coding Fundraiser.
Read more here: http://bit.ly/2ytBeT4
0 notes
iimtcollege · 7 months
Text
Tumblr media
Calling all coding enthusiasts! Get ready for an adrenaline-packed coding competition organized by the Department of Information Technology, under the Technical Club - Ideathon!
. https://www.iimtindia.net/ Call Us: 9520886860 . #IIMTIndia #IIMTNoida#IIMTGreaterNoida#IIMTDelhiNCR #CodingCompetition#TechnicalClub#Ideathon#TechEnthusiasts
0 notes
Tumblr media
Glimpses of Coding Competition on "National Technology Day" Date: 11th May, 2022 Theme:- "Integrated Approach in Science & Technology for Sustainable Future" #nationaltechnologyday #competition #integratedapproach #science #technology #sustainablefuture #coding #codingcompetition #presentation #75azadikaamritmahotsav #mhrdinnovationcell #DronacharyaGroupOfInstitutions #bestengineeringcollegeindelhincr #topplacementcollegeindelhincr #CampusPlacement #multipleplacement
1 note · View note
dailytech-info · 3 years
Photo
Tumblr media
🤣🤣🤣 . . 🌐www.techyrick.com . . #algorithmskillart #codingtips #codingblocks #medicalcoding #codinggoats #learncoding #codingpics #codingkids #codingtime #codinganddecoding #codinghumour #codingwithkids #codingforbeginners #codingbootcamp #codinglife #codingblog #codingtutorials #codinghumor #algorithmsucks #codingcompetition #codinglove #codinginterview #codingismylife #htmlcoding #codingbooks #codingproblems #codinginspiration #codingart #codinggirls #coding https://www.instagram.com/p/CQ3QKzmBnNa/?utm_medium=tumblr
0 notes
98thpercentile2 · 4 years
Link
Kids who are learning how to code aren’t thinking about how they are applying the quadratic formula, they are navigating algorithms and using logic to figure out how to make the avatar in the game jump. Read more 
0 notes
iimtcollege · 2 years
Photo
Tumblr media
Department of Information Technology, IIMT College of Greater Noida is Organizing Minor Activity 'CODING COMPETITION ' on 23rd September, 2022 at 3:00 pm to 5:00 pm. . https://www.iimtindia.net/ Call Us: 9520886860 . #AdmissionOpen2022 #BTechIT #CODING #AatmanirbharBharat #CODINGCOMPETITION #AKTUadmissiongreaterNoida #Btechadmission2022 #BTech #BTechelectronicsandcommunicationengineer #BestEngineeringCollegeDelhiNCR #bestengineeringcollegeingreaterNoida #topengineeringcollegeinup
0 notes