1. Initialize random index for minimum and maximum value. Anyhow it's gonna be updated. 2. To find the max and min element in an array, use Max and Min function. Example Code in Java public class Main{ public static void main(String args[]) { int arr[] = {2,4,3,7,5}; System.out.println(getMinMax(arr)); } public static int getMinMax(int[] arr) { //just set arbitrary index 0,1 for now int min = ar..
Java Script is a single thread, not multi-thread. If there is another function in use, other functions should wait in Queue until it's done. Java and C# allow multi-thread. 자바스크립트는 single-thread 이므로 앞선 실행문이 call stack 에서 실행되는 동안 Queue(Java Script event 엔진이 주기적으로 할 일 확인하는 곳)에서 앞선 실행문이 끝나기를 기다린다. Example Code function first(){ setTimeout(function (){ console.log('start timer') }, 1500); // It's su..
- Total
- Today
- Yesterday
- math.max
- 프로그래머스 알고리즘문제
- HashMap
- easy algorithm
- algorithm
- hackerrank
- hackerrank solution
- Collection Framework
- 프로그래머스 알고리즘
- hackerrank javascript solution
- HackerRank Algorithm
- easy javascript algorithm
- spring boot application
- rest parameter
- java
- C++
- equals()
- Javascript Algorithm
- 프로그래머스
- string class in java
- substring()
- javascript
- 알고리즘
- math.abs
- repeat()
- Object type casting
- compareTo()
- code refactoring
- hackerrank javascript
- ... in Javascript
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |