GithubHelp home page GithubHelp logo

Hi there šŸ‘‹

  • šŸ¤” Iā€™m looking for help with DevOps stuff.
  • šŸ’¬ Ask me about Java, Python, Golang, TypeScript
  • šŸ“« How to reach me: LinkedIn
  • šŸ“• My personal tech blog on Medium
  • šŸ˜„ Pronouns: [denich]
  • āš” Fun fact: I prefer Kanban.

LinkedIn ko-fi

Danylo Halaiko's Projects

expressions-matter icon expressions-matter

Task Given three integers a ,b ,c, return the largest number obtained after inserting the following operators and brackets: +, *, (). Consider an Example : With the numbers are 1, 2 and 3 , here are some ways of placing signs and brackets: 1 * (2 + 3) = 5 1 * 2 * 3 = 6 1 + 2 * 3 = 7 (1 + 2) * 3 = 9 So the maximum value that you can obtain is 9. Notes The numbers are always positive. The numbers are in the range (1ā€‰ ā‰¤ā€‰ a,ā€‰b,ā€‰cā€‰ ā‰¤ā€‰ 10). You can use the same operation more than once. It's not necessary to place all the signs and brackets. Repetition in numbers may occur . You cannot swap the operands. For instance, in the given example you cannot get expression (1 + 3) * 2 = 8. Input >> Output Examples: expressionsMatter(1,2,3) ==> return 9 Explanation: After placing signs and brackets, the Maximum value obtained from the expression (1+2) * 3 = 9. expressionsMatter(1,1,1) ==> return 3 Explanation: After placing signs, the Maximum value obtained from the expression is 1 + 1 + 1 = 3. expressionsMatter(9,1,1) ==> return 18 Explanation: After placing signs and brackets, the Maximum value obtained from the expression is 9 * (1+1) = 18.

fp icon fp

Sime function that helps with sport.

fullstack-course4 icon fullstack-course4

Example code for HTML, CSS, and Javascript for Web Developers Coursera Course

get-the-mean-of-an-array icon get-the-mean-of-an-array

It's the academic year's end, fateful moment of your school report. The averages must be calculated. All the students come to you and entreat you to calculate their average for them. Easy ! You just need to write a script. Return the average of the given array rounded down to its nearest integer. The array will never be empty.

hotpizza icon hotpizza

Attempt to learn Classes/Prototypes, closures, modules, fetch, Promises, async/await

if-you-can-t-sleep-just-count-sheep- icon if-you-can-t-sleep-just-count-sheep-

If you can't sleep, just count sheep!! Task: Given a non-negative integer, 3 for example, return a string with a murmur: "1 sheep...2 sheep...3 sheep...". Input will always be valid, i.e. no negative intege

incrementer icon incrementer

Given an input of an array of digits num, return the array with each digit incremented by its position in the array. For example, the first digit will be incremented by 1, the second digit by 2 etc. Make sure to start counting your positions from 1 and not 0.

is-it-a-palindrome icon is-it-a-palindrome

Write function isPalindrome that checks if a given string (case insensitive) is a palindrome.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    šŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. šŸ“ŠšŸ“ˆšŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ā¤ļø Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.