목록전체 글 (55)
5 DERECHA
[Style] 1) Using inline : Give 'style' property in 'View' tag ! first bracket = jsx second bracket = object View is a container for screen. 2) Using Method import React, {Component} from 'react'; import {View, Text, StyleSheet} from 'react-native'; class App extends Component{ render(){ return( hello world ) } const styles = StyleSheet.create({ mainView:{ flex:1, // 화면을 채우는 component 들간의 비율 // e..
I would like to skip how to download React-Native, Java and so on... [Print Hello World in center of screen] When you want to print some text in application, you need to amend App.js file. And it is one of simple example to show how to write "hello world" in your application in Android application. step 1) Import component class in react module. step 2) Class App would have to be inheritanced by..
1. arm compiler version 6로 전환되면서(arm clang) virtual inline은 O3에서 안 먹힌다. 2. virtual inline은 적용 안 되는 것으로 확인이 되며, devirtualization은 Omin option에서만 사용이 가능하다. 3. prgama pack()이 1byte align 맞추는건데 이 친구를 빼면 성능이 올라간다.
[Approach] To solve this problem, I just had to make a function to find a target by using binarySearch. I just hesitate the way to return the index integer and make a decision to just using private global integer. So I could make simple binarySearch function in this problem. class Solution { private: int idx = -1; public: void binarySearch(vector& nums, int left, int right, int target){ if(left>..
I use python language as a solving this problem. Even though you are not using python, the concept of approach the question will be helpful. Approach In this problem, the given an integer array "nums" and variable "val" are our parameter to get from problem. All we have to do remove the element("val") in the array("nums"). But you have to look through this sentence. "Do not allocate extra space ..
문제 접근 They given to us "nums" array like this. class Solution: def moveZeroes(self, nums: List[int]) -> None: In this array, there are some '0' integer. So all we have to do is that we should move zeroes from the original position to end of the array. And we have to take care about space Big-O and time Big-0 notation. So I would like to not declare another array. Instead of this, I will declare ..
* Hash 관련 문제들을 풀어보고 정리하여 Hash 자료구조에 익숙한 시간을 가지려고 한다. 1. [JUNGOL] 3106. 진법변환 문제 접근 이 문제 같은 경우는 HASH를 사용하기 보다는 10진법의 수로 변환 시켰다가 다시 형변환 시키는 방식으로 풀었다. hash를 이용하는게 진법을 가지고 이야기하는 것과 같다. 예를 들어 영어 소문자로만 이루어져 있으면 27진법과 같다. 코드 #include int A, B; char str[100], str2[100]; unsigned long long num, gum; int main() { scanf("%d", &A); while (A!=0) { scanf("%s %d", &str, &B); gum = 1; register int i; for (i = 0;..
문제접근 그냥 간단하게 좌우를 1로 바른다음에 해당 열의 전열 두개를 더하면 된다. 단순 수학 문제이다. vector 사용법 2차원 vector의 경우 다음과 같이 두가지 선언 방식이 있다. 1. vector의 크기 (열,행) 정하고 시작 vector v1(6, vector(5, 0)); // 6칸 만들고, 그 안을 vector(5,0)으로 채운다 // vector(5,0) : vector를 5칸 만들고, 그 안을 0으로 채운다. v1[0][0] = 1;//벡터의 메모리가 이미 할당되어 있으니 바로 접근이 가능하다. v1[5][4] = 20;//벡터의 메모리가 이미 할당되어 있으니 바로 접근이 가능하다. 2. vector의 크기 안 정하고 시작 vector v1(6);// 벡터를 6칸 만든다. v1[0]..