明经CAD社区

 找回密码
 注册

QQ登录

只需一步,快速开始

搜索
查看: 901|回复: 2

在1到1+n的数字中,找出缺失和重复的数字

[复制链接]
发表于 2022-9-9 08:49:26 | 显示全部楼层 |阅读模式
1明经币
哪位朋友帮忙写一个小插件:在1到1+n的数字中,找出缺失和重复的数字。就比如说是1到1000 里面的连续数字找出缺失的和重复的。

最佳答案

查看完整内容

http://bbs.mjtd.com/thread-186219-1-1.html
发表于 2022-9-9 08:49:27 | 显示全部楼层
回复

使用道具 举报

发表于 2022-9-9 10:34:41 | 显示全部楼层
试试
  1. (defun samecount (lst / a b n)
  2.   (while lst
  3.     (setq n   (length lst)
  4.     a   (car lst)
  5.     lst (vl-remove a lst)
  6.     b   (cons (cons a (- n (length lst))) b)
  7.     )
  8.     )
  9.   )
  10. (defun delsame (lst / a b)
  11.   (while (setq a (car lst))
  12.     (if
  13.       (vl-position a b)
  14.        nil
  15.        (set 'b (cons a b))
  16.        )
  17.     (setq lst (cdr lst))
  18.     )
  19.   (setq b (reverse b))
  20.   b
  21.   )
  22. (defun tt (lst from to / a n lst1)
  23.   (setq  a   (samecount lst)
  24.   lst (delsame lst)
  25.   n   (- to from)
  26.   )
  27.   (repeat (1+ n)
  28.     (if  (not(member from lst))
  29.       (setq lst1 (cons from lst1))
  30.       )
  31.     (setq from (1+ from))
  32.     )
  33.   (list  (vl-remove-if '(lambda (x) (= 1 (cdr x))) a)
  34.   (reverse lst1)
  35.   )
  36.   )
(tt '(1 2 3 5 7 9 1 2) 1 11)=>(((2 . 2) (1 . 2)) (4 6 8 10 11))


回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

小黑屋|手机版|CAD论坛|CAD教程|CAD下载|联系我们|关于明经|明经通道 ( 粤ICP备05003914号 )  
©2000-2023 明经通道 版权所有 本站代码,在未取得本站及作者授权的情况下,不得用于商业用途

GMT+8, 2024-11-25 10:45 , Processed in 0.200983 second(s), 21 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表