Software programing
Відкрити в Telegram
This is a channel which gives tutorial on different programming languages, android tips and tricks best apps etc...
Показати більше1 471
Підписники
Немає даних24 години
Немає даних7 днів
Немає даних30 днів
Архів дописів
1 471
Hello guys today i am going to show you a trick on the web to download any kind of movie directly free of charge (am not saying free of internet but free of payment for the money)
There may be many films which you wanted to download but u didn't just because you don't know how.
#downloading_movie
1. Search in your browser google.com
2. search on the google the following
intitle:index.of?the movie you want
3.click search
If you wanted serious film just type the season at last
Then choose the first or the second link the Google search engine provided.
4.download from the link
Easy and fast
If you like the trick share others to join
@software_programming1
1 471
Your task is to sort a given string. Each word in the string will contain a single number. This number is the position the word should have in the result.
Note: Numbers can be from 1 to 9. So 1 will be the first word (not 0).
If the input string is empty, return an empty string. The words in the input String will only contain valid consecutive numbers.
Examples
"is2 Thi1s T4est 3a" --> "Thi1s is2 3a T4est"
"4of Fo1r pe6ople g3ood th5e the2" --> "Fo1r the2 g3ood 4of th5e pe6ople"
"" --> ""
order("is2 Thi1s T4est 3a") the output will be
"Thi1s is2 3a T4est"
order("4of Fo1r pe6ople g3ood th5e the2")
the out put will be
"Fo1r the2 g3ood 4of th5e pe6ople"
1 471
This time for js developers we want to write calculations using functions and get the results. Let's have a look at some examples:
seven(times(five())); // must return 35
four(plus(nine())); // must return 13
eight(minus(three())); // must return 5
six(dividedBy(two())); // must return 3
Requirements:
There must be a function for each number from 0 ("zero") to 9 ("nine")
There must be a function for each of the following mathematical operations: plus, minus, times, dividedBy (divided_by in Ruby and Python)
Each calculation consist of exactly one operation and two numbers
The most outer function represents the left operand, the most inner function represents the right operand
Divison should be integer division. For example, this should return 2, not 2.666666...:
eight(dividedBy(three()));
