https://leetcode.com/problems/reverse-string/
Write a function that takes a string as input and returns the string reversed.
Example: Given s “hello”, return “olleh”.
1.
char* reverseString(char* s) {int i 0;int j strlen(s) - 1;while(i < j) …
https://leetcode.com/problems/sum-of-two-integers/
Calculate the sum of two integers a and b, but you are not allowed to use the operator and -.
Example: Given a 1 and b 2, return 3.
注释,这个题目有意思,学过FPGA的人都知道最基本…