Contributor
contributor 1: cl583 Chang Che Liu
contributor 2: sb712 Sangwook Bok
Adder Design
Description
We use 32 bit adder to complete addition and subtraction in alu. Inside the 32 bit CSA adder, we group four bit RCA into an adder, and use mux to choose which sum we need.
Overall Architecture
SangwookBok changed 4 years agoView mode Like Bookmark
Project repository
https://github.com/ianbig/IanAndHenry
Project Goal
A crawel that can gather clean large-scale news data
how to create a clean data
how to design a system that can handle large data
Implementation Detail
Reference
https://github.com/google/syzkaller/blob/master/docs/linux/setup_ubuntu-host_qemu-vm_x86-64-kernel.md
Testing Environment
host machine: Virtualbox (6.1.19) with Ubuntu 20.04
if using virtualbox for host, need the version of 6.1.19 (since this version support nested virtualization)
target machine: Debian with mainline linux kernel (to enable raw gadget, kcov)
Problems
https://leetcode.com/problems/single-number/
Solution
Hash
class Solution {
public:
int singleNumber(vector<int>& nums) {
// use an dictionary to implement
unordered_map<int, int> table;