Challenges
  • Newest first
  • Oldest first
  • Newest first(All)
  • Oldest first(All)
Results: 180
ID
Sort by Ascending order
Sort by Descending order
Search by "id:text"
Platform
Sort by Ascending order
Sort by Descending order
Search by "platform:text"
Title
Sort by Ascending order
Sort by Descending order
Search by "title:text"
Technology
Sort by Ascending order
Sort by Descending order
Search by "technology:text"
Difficulty
Sort by Ascending order
Sort by Descending order
Search by "difficulty:text"
Description
Sort by Ascending order
Sort by Descending order
Search by "description:text"
Official Solutions
Sort by Ascending order
Sort by Descending order
Search by "solution_urls:text"
YT
Sort by Ascending order
Sort by Descending order
Search by "youtube_link:text"
160 applications.ge Range Extraction Problem Solving Medium ვწერთ rangeExtraction(array) ფუნქციას, რომელიც გადაცემულ რიცხვების მასივს დააჯგუფებს ზღვრებად, ზონებად შემდეგი წესით: 1. თუ მასივში გვხვდება რიცხვების ზრდადი მიმდევრობა რომლის წევრთა რაოდენობა მეტია ან ტოლია სამზე ვაბრუნებთ სემდეგი სახით : a-b. მაგ. (-6,-5,-4,-3,-2) გვაძლევს -6--2 2. ისეთი რიცხვები რომლებიც არ არიან მიმდევრობის წევრები ბრუნდებიან ინდივიდუალურად. rangeExtraction([-6,-3,-2,-1,0,1,3,4,5,7,8,9,10,11,14,15,17,18,19,20]) უნდა დააბრუნოს შემდეგი String: "-6,-3-1,3-5,7-11,14,15,17-20"
159 applications.ge String Expansion Problem Solving Medium ვახდენთ გადმოცემული სტრინგის ექსპანსიას შემდგომი წესით: ფრჩხილებში მოთავსებულ სიმბოლოს / სიმბოლოთა მიმდევრობას ვადუბლირებთ იმდენჯერ, რა რიცხვიც წერია გამხსნელ ფრჩხილამდე. მაგალითად: "3(ab)"-ს თუ გადმოგვცემენ, პროგრამამ უნდა დააბრუნოს: "ababab" "2(a3(b))"-ს შემთხვევაში - "abbbabbb", რადგან ჯერ შიდა ფრჩხილებში მოთავსებული სიმბოლოების ექსპანსია მოხდება და პირველი ოპერაციის შემდგომ მივიღებთ "2(abbb)"-ს, რადგან 3(b) დაგვიბრუნებს "bbb"-ს
158 applications.ge String to parentheses Problem Solving Easy გადმოცემულ String-ში სიმბოლოებს ვანაცვლებთ ფრჩხილებით - () თუ სიმბოლო უნიკალურია - "(" სიმბოლოს ვანაცვლებთ გამხსნელი ფრჩხილით, წინააღმდეგ შემთხვევაში - ")" - დამხურავით
157 applications.ge Count Array Items Problem Solving Medium ვითვლით მასივში არსებული ელემენტების რაოდენობას (ქვემასივებში არსებული ელემენტების ჩათვლით)
156 applications.ge Shortest Word Length Problem Solving Very easy ვითვლი უმოკლესი სიტყვის სიმბოლოების რაოდენობას
155 leetcode.com Happy Number Problem Solving Medium Write an algorithm to determine if a number n is happy. A happy number is a number defined by the following process: Starting with any positive integer, replace the number by the sum of the squares of its digits. Repeat the process until the number equals 1 (where it will stay), or it loops endlessly in a cycle which does not include 1. Those numbers for which this process ends in 1 are happy. Return true if n is a happy number, and false if not. Example 1: Input: n = 19 Output: true Explanation: 12 + 92 = 82 82 + 22 = 68 62 + 82 = 100 12 + 02 + 02 = 1 Example 2: Input: n = 2 Output: false
154 learnetutorials.com Product of two matrices Problem Solving Easy ორი მატრიცის ნამრავლი
153 learnetutorials.com Check whether the matrix is an identity Problem Solving Very easy ვამოწმებთ გადმოცემული მატრიცა არის თუ არა Identity მატრიცა. Identity ეწოდება მატრიცას, თუ მის დიაგონალზე (მარცხნიდან მარჯვნივ) განთავსებულია ერთიანები (1) ყველა დანარჩენი მნიშვნელობა კი უნდა იყოს 0
152 learnetutorials.com Remove white space form the string Problem Solving Very easy ამოშლის ყველა space-ს გადაცემული string-დან
151 learnetutorials.com Converts Fahrenheit to Celsius Problem Solving Very easy Fahrenheit-ს და Celsius-ს აკონვერტირებს ერთმანეთში
Results: 180