Skip to content

Instantly share code, notes, and snippets.

@loisC123
loisC123 / polynomial.c
Created December 15, 2020 15:04
多項式
#include<stdio.h>
#include<assert.h>
#include"polynomial.h"
//s07490015 莊舒歆
int
Polynomial_Print(Polynomial *poly)
{
int cc = 0;
int ii;
if (poly == NULL) return cc;
@loisC123
loisC123 / Single Number (_XOR).c
Last active December 15, 2020 14:51
leetcode 30天挑戰
//Example 1:
//Input: nums = [2,2,1]
//Output: 1
//Example 2:
//Input: nums = [4,1,2,1,2]
//Output: 4
//Example 3:
//Input: nums = [1]